home *** CD-ROM | disk | FTP | other *** search
- /*
- * kdat
- *
- * Data structures common to more than one kernel module
- */
-
- #include <stdio.h>
- #include <sys/types.h>
-
- #undef integer /* Silly stdtypes */
- #include "Kernel/h/stdTypes.h"
- #include "Kernel/h/kEvents.h"
-
- int SigsHeld; /* Critical section; signals are held */
- struct TaskQueue FreeQ, TaskQ, TaskArray[MAXTASKQ];
- struct SigTable SigTable[NSIG];
-
- int ActSig[NSIG];
- int ActCount=0;
- int Pending=0;
- int gotSig=0;
-